home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_gen_sectordoor.cog < prev    next >
Text File  |  1999-11-15  |  803b  |  41 lines

  1.            # Jones 3D Cog Script
  2. #
  3. # gen_SectorDoor.cog
  4. #
  5. #
  6. # This door is activated by entering a sector.
  7. #
  8. #
  9. # (PAZ)
  10. #
  11. # (C) 1998 LucasArts Entertainment Co. All Rights Reserved
  12. # ========================================================================================
  13.  
  14. symbols
  15.  
  16.         message         entered
  17.         
  18.         thing           door
  19.         
  20.         sector          sector1
  21.                                                                                 
  22.         float           speed=5.0
  23.         
  24.                 
  25. end
  26.  
  27. #=========================================================================================
  28.  
  29. code
  30.  
  31. entered:
  32.  
  33.         
  34.         
  35.         MoveToFrame(door, 1, speed);
  36.                
  37.                 
  38.         return;
  39.         
  40. end
  41.